home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 002 / nywmap.arc / KEYCONF.C < prev    next >
Encoding:
Text File  |  1985-12-20  |  291 b   |  17 lines

  1. /* GENKEY.C - this program generates a 256 line file to stdout of the form
  2.  
  3.     0=0
  4.     1=1
  5.     ...
  6.     255=255
  7.  
  8.   This should be re-directed to a file which will be later read by keycomp.exe
  9. */
  10.  
  11. main()
  12. {
  13.   int  c;
  14.   for (c = 0;  c < 256;  c++)  printf("%d=%d\n", c, c);
  15. }
  16.  
  17.